 /* General CSS */
 * {
     margin: 0;
     padding: 0;
     font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
 }


 body {
     background-color: black;
     /* overflow-x: hidden; */
 }

 /* Landing First View of the Page */
 .mainsection {
     background-image: url(https://assets.nflxext.com/ffe/siteui/vlv3/d1532433-07b1-4e39-a920-0f08b81a489e/67033404-2df8-42e0-a5a0-4c8288b4da2c/IN-en-20231120-popsignuptwoweeks-perspective_alpha_website_medium.jpg);
     width: 100vw;
     height: 100vh;
     background-size: cover;
     background-position: center center;

 }

 .b-box {
     background-color: black;
     width: 101.25%;
     height: 100vh;
     position: absolute;
     filter: opacity(0.6);
 }

 /* NAVBAR */
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 80vw;
     height: 53px;
     margin: auto;
     /* background-color: aqua; */
     padding: 20px 0px;
 }

 nav>.left>img {
     width: 160px;
 }

 nav select {
     font-size: 16px;
     color: white;
     font-weight: 500;
     padding: 2px 20px 2px 20px;
     border: 1px solid rgb(116, 113, 113);
     background-color: rgba(0, 0, 0, 0.747);
     border-radius: 4px;
     outline: 2px solid white;
     outline-offset: 2px;
 }

 nav>.right>button {
     color: white;
     padding: 8px 20px;
     margin-left: 20px;
     background-color: red;
     border: red;
     border-radius: 4px;
     font-weight: bold;
     font-size: 15px;
     cursor: pointer;
 }

 nav>.right>button:hover {
     background-color: rgb(175, 13, 13);
 }

 /* FIRST PAGE */
 .front {
     display: flex;
     height: calc(100% - 93px);
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
 }

 .front>p:nth-child(1) {
     width: 75vw;
     font-size: 48px;
     font-weight: 900;
     text-align: center;
 }

 .front>p:nth-child(2) {
     width: 75vw;
     font-size: 24px;
     font-weight: 400;
     text-align: center;
     margin: 30px auto;
 }

 .front>p:nth-child(3) {
     width: 75vw;
     font-size: 24px;
     font-weight: 400;
     text-align: center;
 }


 .front>div>input {
     padding: 20px 200px 20px 20px;
     margin: 20px 0px 0px 0px;
     color: #fefeff;
     background-color: rgba(0, 0, 0, 0.226);
     border: 1px solid rgba(255, 255, 255, 0.445);
 }

 .front>div>input::placeholder {
     color: rgb(184, 184, 184);
     font-size: 18px;
     font-weight: 500;

 }

 .front>div>button {
     background-color: red;
     color: white;
     font-size: 24px;
     font-weight: 500;
     padding: 8px 30px 15px 20px;
     border: 1px solid red;
     border-radius: 4px;
     cursor: pointer;
 }

 /* SEPERATION LINE */
 .line {
     height: 4px;
     width: 100vw;
     background-color: rgb(35, 35, 35);
 }
  /* SECOND SECTION */
 .second {
     height: 525px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 75vw;
     margin: auto;
 }

 .second>div>p:nth-child(1) {
     color: white;
     font-size: 48px;
     font-weight: 900;
 }

 .second>div>p:nth-child(2) {
     color: white;
     font-size: 24px;
     font-weight: 400;
     width: 35vw;
 }

 .second>img {
     height: 355px;
     position: relative;
     z-index: 10;
 }

 .second>video {
     position: relative;
     right: 410px;
     height: 193px;
     bottom: 7px;

 }
/* Third section */

 .third {
     position: relative;
     height: 525px;
 }

 .third>div>p:first-child {
     margin-bottom: 15px;

 }

 /*Box which is on Millie's photo this will causing problem */
 .box {

     position: absolute;
     border: 1px solid white;
     border-radius: 10px;
     height: 80px;
     width: 277px;
     background-color: rgba(0, 0, 0, 0.781);
     z-index: 20;
     display: flex;
     align-items: center;
     justify-content: space-between;
     top: 350px;
     right: 635px;
     padding: 5px 10px;
 }

 .box>img {
     height: 80px;

 }

 .box svg {
     color: #fefeff;
 }

 .p>p:nth-child(1) {
     color: white;
     font-size: 16px;
     font-weight: 500;
 }

 .p>p:nth-child(2) {
     color: blue;
     font-size: 14px;
     font-weight: 400;
 }

 /* Forth Section */
 .forth>video {
     position: relative;
     right: 384px;
     height: 162px;
     bottom: 67px;
 }

/* FAQ's */
 .faq {
     width: 100vw;
     /* height: 800px; */
     background-color: rgb(0, 0, 0);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .faq>h2 {
     font-size: 50px;
     font-weight: 900;
     color: white;
     margin-bottom: 20px;
     margin-top: 50px;
 }
/* Question Box in FAQ'S */
 .question {
     display: flex;
     padding: 10px 20px;
     justify-content: space-between;
     align-items: center;
     width: 70%;
     height: 50px;
     background-color: rgb(65, 63, 63);
     color: white;
     font-size: 24px;
     font-weight: 400;
     margin: 5px auto;
     cursor: pointer;
 }

 .question:hover {
     background-color: grey;
 }

.faq>p {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin: 40px 0px 0px 0px;
}
.faq>div>input {
    color: #fefeff;
    padding: 20px 200px 20px 20px;
    margin: 20px 10px 0px 0px;
    background-color: rgba(0, 0, 0, 0.226);
    border: 1px solid rgba(255, 255, 255, 0.445);
    border-radius: 4px;

}
.faq>div>input:hover {
    outline: 2px solid white;
    outline-offset: 2px;

}
.faq>div>input::placeholder {
    color: rgb(184, 184, 184);
    font-size: 18px;
    font-weight: 500;

}
.faq>div>button {
    background-color: red;
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 8px 30px 15px 20px;
    border: 1px solid red;
    border-radius: 4px;
    cursor: pointer;
}
.last {
    margin-bottom: 80px;
}
      /* FOOTER CSS */             /* PROBLEM STARTS FROM HERE */

    .notgrid{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px 0px;
    }
    
    footer p {
        display: flex;
        color: white;
        text-decoration: underline;
        color: rgb(189, 189, 189);
    }
    
    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width: 70vw;
        row-gap: 20px;
        margin: 30px auto;
    }
    
    footer>div>select {
        display: flex;
    
        position: relative;
        left: 180px;
        font-size: 16px;
        color: white;
        font-weight: 500;
        padding: 2px 20px 2px 20px;
        border: 1px solid rgb(116, 113, 113);
        background-color: rgba(0, 0, 0, 0.747);
        border-radius: 4px;
        outline: 2px solid white;
        outline-offset: 2px;
    }
    
 